home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1996 September
/
JCSM Shareware Collection (JCS Distribution) (September 1996).ISO
/
genealog
/
10740c01.ziv
/
VENDINST.BAT
< prev
Wrap
DOS Batch File
|
1993-12-08
|
2KB
|
41 lines
@echo off
echo ┌───────────────────────────────────────────────────────────────────┐
echo │ This batch file is provided for Vendors to install the program: │
echo │ Cumberland Story │
echo │ to a diskette for distribution. A diskette sent to end users │
echo │ should contain the following three files. │
echo │ │
echo │ INSTALL.EXE │
echo │ INSTALL.CMD │
echo │ CSTORY12.EXE │
echo │ │
echo │ The INSTALL.EXE will not work unless you also label the diskette │
echo │ with the label "CSTORY 1-1" (without quotations). │
echo │ Running this batch file will copy these three files and label │
echo │ the diskette in the destination drive. │
echo └───────────────────────────────────────────────────────────────────┘
pause
if "%1"=="A:" goto good
if "%1"=="B:" goto good
if "%1"=="a:" goto good
if "%1"=="b:" goto good
echo ┌───────────────────────────────────────────────────────────────────┐
echo │ You must specify Drive A: or Drive B: as the destination drive │
echo │ Example: VENDINST A: │
echo └───────────────────────────────────────────────────────────────────┘
goto ending
:good
echo Copying INSTALL.EXE to Drive %1
copy install.exe %1
echo Copying INSTALL.CMD to Drive %1
copy install.cmd %1
echo Copying CSTORY12.EXE to Drive %1
copy cstory12.exe %1
echo Labeling Diskette in Drive %1
label %1 CSTORY 1-1
echo ┌──────────────────────────────────────────────────────────────────┐
echo │ Files succesfully copied! │
echo └──────────────────────────────────────────────────────────────────┘
:ending